body, html {
    margin: 0; padding: 0; height: 100vh; font-family: Arial, sans-serif;
}
.vnm-container {
    display: flex;
    height: 100vh;
    box-sizing: border-box;
    padding: 20px;
    gap: 30px;
}

/* Left side images */
.left-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.big-img {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.thumbs {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.thumbs img {
    width: 100px;
    height: 70px;
    cursor: pointer;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 3px;
    transition: border-color 0.3s;
}
.thumbs img.active {
    border-color: #007BFF;
}

/* Right side details */
.right-side {
    flex: 1;
    position: relative;
    padding: 35px;
    border-radius: 12px;
    color: #222;
    overflow-y: auto;
    background-image: url('../../bg.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.right-side::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.75); /* lighter overlay for better readability */
    border-radius: 12px;
    z-index: -1;
}

.right-side h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 8px;
}

.right-side p {
    margin: 8px 0;
    line-height: 1.5;
    font-size: 1rem;
}

.right-side strong {
    color: #444;
    font-weight: 600;
}

/* Make description more readable */
.right-side p:last-of-type {
    margin-top: 12px;
    background: rgba(255,255,255,0.5);
    padding: 10px;
    border-radius: 6px;
}

/* Stylish Apply Button */
.apply-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6600, #ff8c1a);
    color: white;
    padding: 12px 24px;
    margin-top: 20px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.apply-btn:hover {
    background: linear-gradient(135deg, #e65c00, #ff751a);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
    transform: translateY(-2px);
}

/* Stylish WhatsApp Button */
.whatsapp-btn {
    display: inline-block;
    background: linear-gradient(135deg, #25D366, #1EBE57);
    color: white;
    padding: 12px 24px;
    margin-top: 10px; /* smaller gap since it's below Apply Now */
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1EBE57, #17A54A);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Scrollbar */
.right-side::-webkit-scrollbar {
    width: 8px;
}
.right-side::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.1);
    border-radius: 4px;
}

/* Video styling */
.video-preview {
    margin-top: 20px;
    max-width: 100%;
}
.video-preview h3 {
    margin-bottom: 10px;
}
